import { ReactNode } from "react"; const Layout = ({children}: {children: ReactNode}) => { return
{children}
} export default Layout